home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-23 | 274 b | 26 lines | [TEXT/MPCC] |
- // APane.h
-
- #pragma once
-
-
- #include "LPane.h"
-
-
- class APane :
- public LPane
- {
- public:
- static APane * CreateAPaneStream(
- LStream *stream);
- enum {
- class_ID = 'APan'
- };
-
- APane(
- LStream *inStream) :
- LPane(inStream) { }
-
- void DrawSelf();
-
- };
-